home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Toolbox
/
Visual Basic Toolbox (P.I.E.)(1996).ISO
/
text_utl
/
emedit20
/
frmrepla.fr_
/
frmrepla.fr
Wrap
Text File
|
1994-04-28
|
3KB
|
94 lines
VERSION 2.00
Begin Form frmReplaceConfirm
Caption = "Replace Confirm"
ClientHeight = 1170
ClientLeft = 1035
ClientTop = 1050
ClientWidth = 4470
Height = 1575
Left = 975
LinkTopic = "Form1"
ScaleHeight = 1170
ScaleWidth = 4470
Top = 705
Width = 4590
Begin CommandButton cmdCancel
Cancel = -1 'True
Caption = "&Cancel"
Height = 345
Left = 3570
TabIndex = 4
Top = 660
Width = 855
End
Begin CommandButton cmdAll
Caption = "&All"
Height = 345
Left = 2700
TabIndex = 3
Top = 660
Width = 855
End
Begin CommandButton cmdOne
Caption = "&One"
Height = 345
Left = 1830
TabIndex = 2
Top = 660
Width = 855
End
Begin CommandButton cmdNo
Caption = "&No"
Height = 345
Left = 960
TabIndex = 1
Top = 660
Width = 855
End
Begin CommandButton cmdYes
Caption = "&Yes"
Default = -1 'True
Height = 345
Left = 90
TabIndex = 0
Top = 660
Width = 855
End
Begin Label Label1
Alignment = 2 'Center
Caption = "Replace this occurrence?"
Height = 285
Left = 0
TabIndex = 5
Top = 120
Width = 4485
End
End
Option Explicit
Sub cmdAll_Click ()
gfRecursiveSearch = REPLACE_ALL 'replace all
Unload Me ' unload this form
End Sub
Sub cmdCancel_Click ()
gfRecursiveSearch = REPLACE_CANCEL 'replace all
Unload Me
End Sub
Sub cmdNo_Click ()
gfRecursiveSearch = REPLACE_NO 'replace all
Unload Me ' unload this form
End Sub
Sub cmdOne_Click ()
gfRecursiveSearch = REPLACE_ONE 'replace all
Unload Me ' unload this form
End Sub
Sub cmdYes_Click ()
gfRecursiveSearch = REPLACE_YES 'replace all
Unload Me ' unload this form
End Sub